Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633405 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/163 - Alarm App

app.js cody/swapnilsparsh/30DaysOfJavaScript/163 - Alarm App/app.js
115 Views
0 Comments
let para = document.getElementById('para');
let text = document.getElementById('txt');
let text2 = document.getElementById('txt2');
let btn = document.getElementById('btn');
let btn2 = document.getElementById('btn2');
window.addEventListener('load', () => {
text.placeholder = new Date().getHours();
text2.placeholder = new Date().getMinutes();
style.css cody/swapnilsparsh/30DaysOfJavaScript/163 - Alarm App/style.css
100 Views
0 Comments
:root {
--bg-prim: #12181b;
--bg-sec: #383838;
--clr: #ffffff;
}
body {
font-family: 'Montserrat', sans-serif;
padding: 0;
Alarm App cody/swapnilsparsh/30DaysOfJavaScript/163 - Alarm App/index.html
272 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ALARM APP!</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
readme.md cody/swapnilsparsh/30DaysOfJavaScript/163 - Alarm App/readme.md
146 Views
0 Comments
![alarm preview](https://user-images.githubusercontent.com/84850243/166984852-4d355a34-9e2b-4745-a3a0-c9131ced886b.png)